home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / test / suplib / newlist.c < prev    next >
C/C++ Source or Header  |  1992-10-25  |  216b  |  13 lines

  1.  
  2. #include <stdio.h>
  3. #include <suplib/lists.h>
  4.  
  5. void
  6. NewList(struct List *list)
  7. {
  8.     list->lh_Head = (struct Node *)&list->lh_Tail;
  9.     list->lh_Tail = NULL;
  10.     list->lh_TailPred = (struct Node *)&list->lh_Head;
  11. }
  12.  
  13.